home *** CD-ROM | disk | FTP | other *** search
- -- Euphoria Syntax Summary
- -- Compile Options
- with[out] trace/profile/type_check/warning
-
- -- Declarations
- [global] type_name var_name,...
- [global] constant var_name = expression,...
- [global] procedure proc_name(parameters) ... end procedure
- [global] type type_name(parameters) ... end type
- [global] function func_name(parameters) ... end function
-
- -- Commands
- include filename
- profile
-
- -- Statements
- var_name = expression
- if expression then stmts [elsif expression then stmts] [else stmts] end if
- while expression do stmts end while
- for var_name = start to limit [by step] do stmts end for
- procedure_name(arguments)
- exit -- from loop
- return -- from function/type/procedure
- ! shell-command
- ? expression
-